home *** CD-ROM | disk | FTP | other *** search
/ IRIX 6.5 Complementary Applications 2004 May / SGI IRIX 6.5 Complementary Applications 2004 May.iso / dist / OpenOffice.idb / usr / OpenOffice / help / en / sbasic.jar / text / sbasic / common / 03090410.xml < prev    next >
Encoding:
Extensible Markup Language  |  2002-01-24  |  2.3 KB  |  36 lines

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <html><head><title>Switch Function [Runtime]</title><meta name="filename" content="text/sbasic/common/03090410"/><meta name="language" content="en-US"/><help:css-file-link xmlns:help="http://openoffice.org/2000/help"/><!--The CSS style header method for setting styles--><style type="text/css">
  3.  
  4.         p.P1{
  5.                 }
  6.         p.P2{
  7.                 }
  8.         span.T1{
  9.                 font-weight:bold;}
  10.         </style></head><body>
  11.   
  12.   
  13.   <help:to-be-embedded Eid="switch" xmlns:help="http://openoffice.org/2000/help">
  14.   <p class="Head1"><help:link Id="66497">Switch Function [Runtime]</help:link></p>
  15.   <p class="Paragraph">Evaluates a list of arguments, consisting of an expression followed by a value. The Switch function returns a value associated with the expression passed with this function.</p>
  16.   </help:to-be-embedded>
  17.   <p class="Paragraph"><span class="T1">Syntax</span>:</p>
  18.   <p class="Paragraph">Switch (Expression1, Value1[, Expression2, Value2[..., Expression_n, Value_n]]) <help:key-word value="Switch" tag="kw66497_1" xmlns:help="http://openoffice.org/2000/help"/></p>
  19.   <p class="Paragraph"><span class="T1">Parameter</span>:</p>
  20.   <p class="Paragraph">The <span class="T1">Switch</span> function evaluates the expressions from left to right, and returns the value assigned to the function expression. If expression and value are not given as a pair, a runtime error will occur.</p>
  21.   <p class="Paragraph">Expression: The expression to be evaluated.</p>
  22.   <p class="Paragraph">Value: The value to be returned if the expression is True.</p>
  23.   <p class="Paragraph">In the following example the <span class="T1">Switch</span> function is used to assign the appropriate gender to the name given to the function:</p>
  24.   <p class="P2">Example:</p>
  25.   <p class="PropText">Sub ExampleSwitch</p>
  26.   <p class="PropText">Dim sGender As String</p>
  27.   <p class="PropText">sGender = GetGenderIndex( "John" )</p>
  28.   <p class="PropText">MsgBox sGender</p>
  29.   <p class="PropText">End Sub</p>
  30.   <p class="PropText"/>
  31.   <p class="PropText">Function GetGenderIndex (sName As String) As String</p>
  32.   <p class="PropText">GetGenderIndex = Switch(sName = "Jane", "female", sName = "John", "male")</p>
  33.   <p class="PropText">End Function</p>
  34.   <p class="PropText"/>
  35.   <p class="PropText"/>
  36.  </body></html>